From 2e943be4985c233f7db809904e7580b26b7413d9 Mon Sep 17 00:00:00 2001 From: Gleb Kozyrev Date: Fri, 9 Oct 2015 20:24:24 +0300 Subject: [PATCH] Ignore `*.py` in `make no-exes` --- Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.in b/Makefile.in index bec356904..7d883ef09 100644 --- a/Makefile.in +++ b/Makefile.in @@ -108,7 +108,7 @@ no-exes: find $$(git ls-files) -type f \ \( -perm -u+x -or -perm -g+x -or -perm -o+x \) \ -not -name configure -not -name '*.sh' -not -name '*.rs' \ - -not -wholename "*/rust-installer/*" | \ + -not -name '*.py' -not -wholename "*/rust-installer/*" | \ grep '.*' \ && exit 1 || exit 0 -- 2.30.2